-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade version of jackson-databind in sql/core/pom.xml #6028
Conversation
This PR should get rid of the following test failure: java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.addField(Lcom/fasterxml/jackson/databind/introspect/AnnotatedField;Lcom/fasterxml/ jackson/databind/PropertyName;ZZZ)V |
@rxin |
Merged build triggered. |
Merged build started. |
Test build #32303 has started for PR 6028 at commit |
Test build #32303 has finished for PR 6028 at commit
|
Merged build finished. Test PASSed. |
Test PASSed. |
Thanks for digging into this. Merging to master and 1.4. |
Currently version of jackson-databind in sql/core/pom.xml is 2.3.0 This is older than the version specified in root pom.xml This PR upgrades the version in sql/core/pom.xml so that they're consistent. Author: tedyu <[email protected]> Closes #6028 from tedyu/master and squashes the following commits: 28c8394 [tedyu] Upgrade version of jackson-databind in sql/core/pom.xml (cherry picked from commit 3071aac) Signed-off-by: Michael Armbrust <[email protected]>
Actually, why are you hard coding it? Shouldn't it be set to |
Looks like this fixed all of the maven tests - thanks @tedyu! |
Currently version of jackson-databind in sql/core/pom.xml is 2.3.0 This is older than the version specified in root pom.xml This PR upgrades the version in sql/core/pom.xml so that they're consistent. Author: tedyu <[email protected]> Closes apache#6028 from tedyu/master and squashes the following commits: 28c8394 [tedyu] Upgrade version of jackson-databind in sql/core/pom.xml
Currently version of jackson-databind in sql/core/pom.xml is 2.3.0 This is older than the version specified in root pom.xml This PR upgrades the version in sql/core/pom.xml so that they're consistent. Author: tedyu <[email protected]> Closes apache#6028 from tedyu/master and squashes the following commits: 28c8394 [tedyu] Upgrade version of jackson-databind in sql/core/pom.xml
Hi all: |
NoSuchMethodError generally can't happen if the same jars you compile with
|
I got it. I will check my classpath. Thanks |
@@ -64,7 +64,7 @@ | |||
<dependency> | |||
<groupId>com.fasterxml.jackson.core</groupId> | |||
<artifactId>jackson-databind</artifactId> | |||
<version>2.3.0</version> | |||
<version>2.4.4</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see this has already been closed, but this version tag should just be removed instead, so that it's inherited from the parent pom.
Currently version of jackson-databind in sql/core/pom.xml is 2.3.0 This is older than the version specified in root pom.xml This PR upgrades the version in sql/core/pom.xml so that they're consistent. Author: tedyu <[email protected]> Closes apache#6028 from tedyu/master and squashes the following commits: 28c8394 [tedyu] Upgrade version of jackson-databind in sql/core/pom.xml
Currently version of jackson-databind in sql/core/pom.xml is 2.3.0
This is older than the version specified in root pom.xml
This PR upgrades the version in sql/core/pom.xml so that they're consistent.